home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia2.dir / 00505_Script_EaglerFlee < prev    next >
Text File  |  1995-05-21  |  798b  |  39 lines

  1. on mouseDown
  2.   global DeadOrNot
  3.   put the movietime of sprite 48 into DeadOrNot
  4.   if DeadOrNot >= 2750 then 
  5.     exit
  6.   end if
  7.   put "Flee" into f
  8.   put "FleeHL" into fHL
  9.   hiliter 8, f, fHL
  10.   puppetsound "flee.aif"
  11.   updatestage
  12. end
  13.  
  14.  
  15.  
  16. on mouseUp
  17.   global gTheDay, movieName, DeadOrNot, snap1, snap2, theMovieName, gTheDay
  18.   if DeadOrNot >= 2750 then 
  19.     exit
  20.   end if
  21.   WhatDayIsIt
  22.   set the castNum of sprite 8 = cast "Flee"
  23.   puppetsprite 48, false
  24.   repeat with d = 7 to 10
  25.     puppetSprite d, false
  26.   end repeat
  27.   --set the directToStage of cast theMovieName to 0
  28.   set the sound of cast theMovieName to 0
  29.   
  30.   updatestage
  31.   if snap1 = 0 and snap2 = 0 then
  32.     go frame gTheDay & "NoShots"
  33.   else
  34.     go frame "Darkroom"
  35.   end if
  36.   
  37.   puppetsound 0
  38. end
  39.